home *** CD-ROM | disk | FTP | other *** search
/ The Business Master (3rd Edition) / The Business Master (3rd Edition).iso / files / utilstem / util1 / rm.doc < prev    next >
Text File  |  1988-02-27  |  1KB  |  45 lines

  1.  
  2. RM.EXE -- A UNIX-style file and directory removing utility.
  3.  
  4. Usage:    rm [-firv] filespec
  5.  
  6. Command line switches:
  7.     -f = Force removal of read-only files.
  8.     -i = Inquire before removing files.
  9.     -r = Recursively remove subdirectories (DANGEROUS).
  10.     -s = Summary of disk space reclaimed and items removed.
  11.     -t = Test mode, no files or directories removed.
  12.     -v = Verbose mode, call out files as they are removed.
  13.  
  14. Filespec:
  15.     Any DOS filename, with or without wildcard characters.
  16.  
  17. Typical examples:
  18.     rm *.bak    removes files from current directory
  19.     rm *.*
  20.  
  21.     rm -rv \junk    removes the directory "junk" and all contents
  22.             and prints filenames as they are removed
  23.  
  24.     rm -fr c:\    removes all files from drive c:, even read-
  25.             only files
  26.  
  27.     rm -r c:\*.bak    removes "*.bak" files from directory c:\
  28.             ONLY, does NOT recursively descend and delete
  29.             other occurances of "*.bak"
  30.  
  31.     rm -rts c:\dir1    lists the total number of files that will be
  32.             removed by this command, but does NOT remove
  33.             the files
  34.  
  35. I developed this program to purge unneeded directories from my hard disk.  Let
  36. me caution you:  This program can delete far more than just "unneeded direc-
  37. tories."  It can WIPE OUT your hard disk before you can say "oh sh*t!"
  38.  
  39. To be on the safe side, try out your command first using the "test mode" and
  40. examine the files that will be removed with either the "verbose" or "summary"
  41. command line switches.
  42.  
  43. Joe Barnhart
  44. CIS 76174,1573
  45.